home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Media Design Review 1999
/
Interactive Media Design Review 1999.iso
/
mac
/
allfiles
/
Centri
/
Centri.dir
/
00287_Script_TextOverlay
< prev
next >
Wrap
Text File
|
1999-02-25
|
782b
|
30 lines
property whichSprite
on mouseWithin me
if the locv of sprite the spriteNum of me > 10 then
set the visibility of sprite whichSprite = TRUE
if the locv of sprite whichSprite - the mousev > 30 then
set the loc of sprite whichSprite = point (the mouseh - 50, the mouseV + Random (5) + 90)
else
set the loc of sprite whichSprite = point (the mouseh - 50, the mouseV +100)
end if
end if
end
on mouseLeave me
set the visibility of sprite whichSprite = FALSE
end
on getPropertyDescriptionList
set p_list = [ ¼
whichSprite : [ #comment: " The text is whichSprite:", ¼
#format: #integer, ¼
#default: 1 ] ]
return p_list
end